home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 3 / QRZ Ham Radio Callsign Database - Volume 3.iso / digests / tcp / 930157.txt < prev    next >
Internet Message Format  |  1994-06-04  |  5KB

  1. Date: Fri, 18 Jun 93 04:30:11 PDT
  2. From: Advanced Amateur Radio Networking Group <tcp-group@ucsd.edu>
  3. Errors-To: TCP-Group-Errors@UCSD.Edu
  4. Reply-To: TCP-Group@UCSD.Edu
  5. Precedence: Bulk
  6. Subject: TCP-Group Digest V93 #157
  7. To: tcp-group-digest
  8.  
  9.  
  10. TCP-Group Digest            Fri, 18 Jun 93       Volume 93 : Issue  157
  11.  
  12. Today's Topics:
  13.                             Amateur Radio
  14.                             ampr.org robot
  15.                    Looking for *nix suggestions...
  16.              NOS SMTP Server Patch/bugfix for control-Z's
  17.  
  18. Send Replies or notes for publication to: <TCP-Group@UCSD.Edu>.
  19. Subscription requests to <TCP-Group-REQUEST@UCSD.Edu>.
  20. Problems you can't solve otherwise to brian@ucsd.edu.
  21.  
  22. Archives of past issues of the TCP-Group Digest are available
  23. (by FTP only) from UCSD.Edu in directory "mailarchives".
  24.  
  25. We trust that readers are intelligent enough to realize that all text
  26. herein consists of personal comments and does not represent the official
  27. policies or positions of any party.  Your mileage may vary.  So there.
  28. ----------------------------------------------------------------------
  29.  
  30. Date: Fri Jun 18 14:09:32 1993
  31. From: iiitac@pyr.swan.ac.uk
  32. Subject: Amateur Radio
  33. To: tcp-group@ucsd.edu
  34.  
  35. Most of the Unixes will do what you want. Normally people run WAMPES or
  36. KA9Q in some form and run a slip link from the KA9Q software to the kernel
  37. TCP/IP over a pty. On some poorer unixen you'll need to use a pair of
  38. looped back serial ports, which is a pain.
  39. I run Linux and WAMPES and I'm very happy with it.
  40.  
  41. Alan
  42.  
  43. ------------------------------
  44.  
  45. Date: Thu, 17 Jun 93 22:39:51 PDT
  46. From: brian@nothing.ucsd.edu (Brian Kantor)
  47. Subject: ampr.org robot
  48. To: tcp-group@ucsd.edu
  49.  
  50. Looks like the ampr.org robot (ampraddr@ucsd.edu) has suffered from
  51. database damage.  I'll see if I can get it fixed somehow but don't hold
  52. your breath - in less than 24 hours I leave town for a week and I just
  53. don't know if I'll be able to get it working that fast.  Arrrgh!
  54.  - Brian
  55.  
  56. ------------------------------
  57.  
  58. Date: Wed, 16 Jun 93 8:36:00 EDT
  59. From: "John R. Ackermann" <jra@law7.daytonoh.ncr.com>
  60. Subject: Looking for *nix suggestions...
  61. To: tcp mailing list <tcp-group@ucsd.edu>
  62.  
  63. I've been running an NCR Tower Unix system (68020 based) at home for a
  64. couple of years, hooked by ethernet to a PC running JNOS which serves as
  65. a router to the radio world.  My goal is to offer mail, news, and
  66. database services to the ham community via tcp/ip.
  67.  
  68. Last week I took a lightning hit that wiped out two of my PCs, and a
  69. couple of pieces of the Tower.
  70.  
  71. It looks as though the insurance proceeds <might> let me do some
  72. upgrading, and I'm considering retiring the Tower and replacing it with
  73. an Intel-based box running Unix.
  74.  
  75. One of my goals would be to eliminate the need for another PC to serve
  76. as a router to the radios.
  77.  
  78. I'm considering 386BSD, the BSDI version, Linux, Destiny (SVR4.2.2?), and 
  79. I may be able to get my hands on a slightly old copy of SCO unix as a
  80. freebie.  I'm not a Unix guru, so I'm looking for something that'll be 
  81. reasonably stable running TCP/IP and UUCP.  I also need something that I 
  82. can get a simple indexed DBMS system for -- I run a callbook and
  83. frequency database server.
  84.  
  85. I'm particularly interested in an OS that's either a) likely to have
  86. AX.25 hacked into the kernel soon, or b) has a decent DOS emulator that
  87. might let me run JNOS in a DOS session to serve as the router -- is this
  88. practical, or am I in fantasy land?
  89.  
  90. If the insurance company is nice, I'll be able to pay some money for the
  91. OS instead of sticking with 386BSD or Linux, if doing that will buy what
  92. I need.
  93.  
  94. Thanks for any suggestions...
  95.  
  96. 73,
  97. John   AG9V
  98.  
  99. ------------------------------
  100.  
  101. Date: Thu, 17 Jun 1993 17:19:28 -0600 (CST)
  102. From: "Erik Olson" <erik@marge.phys.washington.edu>
  103. Subject: NOS SMTP Server Patch/bugfix for control-Z's
  104. To: tcp-group@ucsd.edu, karn@qualcomm.com
  105.  
  106. Askhok Aiyar (ashok@biochemistry.cwru.edu) had a problem wherein certain
  107. PC mailers were passing control-Z's (created in some signature files by
  108. older editors).  The problem is that the control-Z passes through the TCP
  109. connection and eventually gets written to the eventual recipient's mail file
  110. on the NOS machine.  Next time one (POP,MAILBOX, et. al.) tries to read from
  111. the file, the control-Z is interpreted as end of file and everything after
  112. it (including the subsequent messages!) are discarded.
  113.  
  114. I have written a quick 2-liner fix for this.  For the current base code
  115. (smtpserv.c, rev 1.18), here are the diffs:
  116.  
  117. 354a355,356
  118. >   while (strchr(p,CTLZ)!=NULL) /* Change control-Z's to \n */
  119. >                    *strchr(p,CTLZ)='\n';
  120.  
  121. and for those who need a context of where to put those two lines, they come
  122. right in this section (code may differ slightly based on nos version):
  123.  
  124. /* Append to data file */
  125.        /* CHANGE GOES IN HERE */
  126.  if(fprintf(mp->data,"%s\n",p) < 0){
  127.      (void) usprintf(mp->s,Ioerr);
  128.      return 1;
  129.  }
  130.  
  131.   - Erik
  132. ---
  133. Erik Olson (in lab)                      erik@marge.phys.washington.edu
  134. University of Washington                      olson@phys.washington.edu
  135. Cosmic Ray Lab, Phys. 405
  136.  
  137. ------------------------------
  138.  
  139. End of TCP-Group Digest V93 #157
  140. ******************************
  141. ******************************
  142.